home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / styles / IStyleClient.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  1009 b   |  35 lines

  1. package mx.styles
  2. {
  3.    public interface IStyleClient extends ISimpleStyleClient
  4.    {
  5.       function regenerateStyleCache(param1:Boolean) : void;
  6.       
  7.       function get className() : String;
  8.       
  9.       function clearStyle(param1:String) : void;
  10.       
  11.       function getClassStyleDeclarations() : Array;
  12.       
  13.       function get inheritingStyles() : Object;
  14.       
  15.       function set nonInheritingStyles(param1:Object) : void;
  16.       
  17.       function setStyle(param1:String, param2:*) : void;
  18.       
  19.       function get styleDeclaration() : CSSStyleDeclaration;
  20.       
  21.       function set styleDeclaration(param1:CSSStyleDeclaration) : void;
  22.       
  23.       function get nonInheritingStyles() : Object;
  24.       
  25.       function set inheritingStyles(param1:Object) : void;
  26.       
  27.       function getStyle(param1:String) : *;
  28.       
  29.       function notifyStyleChangeInChildren(param1:String, param2:Boolean) : void;
  30.       
  31.       function registerEffects(param1:Array) : void;
  32.    }
  33. }
  34.  
  35.